This patch enhances the error message in question in two minor ways
* typo fix: one -> once
* Print the entire message at once, otherwise it
seems to end up geting interlaced with other dom0 kernel
messages on the console (on my system at least).
Signed-Off-By: Simon Horman <horms@verge.net.au>
#ifdef DISALLOW_SETTING_ITC_FOR_NOW
static int did_print;
if (!did_print) {
- printk("vcpu_set_itc: Setting ar.itc is currently disabled\n");
- printk("(this message is only displayed one)\n");
+ printk("vcpu_set_itc: Setting ar.itc is currently disabled "
+ "(this message is only displayed once)\n");
did_print = 1;
}
#else